home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2005 November
/
WNnov2005.iso
/
Windows
/
Indispensables
/
Movie Collection
/
MovieCollection5403.exe
/
{app}
/
web
/
FreeBrowser
/
index.xsl
< prev
Wrap
Extensible Markup Language
|
2005-08-08
|
1KB
|
43 lines
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" media-type="text/html; charset=ISO-8859-1"/>
<xsl:template match="/">
<html>
<body>
<div>
<u>Versions</u> <br /> <br />
<ul>
<li>FreeBrowser: <b>~fbver~</b></li>
<li>Plugin Movie Collection: <b>~pluginver~</b></li>
</ul>
<hr noshade="1" />
</div>
<br />
<div>
<u>Liste AlphabΘtique</u> <br /> <br />
<ul>
<li><a href="../mc?action=films&order=nom&sens=asc">A->Z</a> - <a href="../mc?action=films&order=nom&sens=desc">Z->A</a></li>
</ul>
<hr noshade="1" />
</div>
<u><xsl:value-of select="count(//top10ajouts/top10ajout)" /> derniers films ajoutΘs:</u> <br /> <br />
<xsl:for-each select="//top10ajouts/top10ajout">
<ul>
<li><xsl:value-of select="@dateajout" /> :
<a>
<xsl:attribute name="href">../mc?action=film&idx=<xsl:value-of select="@idx"/></xsl:attribute>
<xsl:value-of select="@nom"/>
</a>
</li>
</ul>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>